home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 69 / MOBICLIC 69.ISO / pc / DATA / ZOOMZOOM / ZOOM04.DIR / 00024_Script_clic sur animaux ZOOM4_R < prev    next >
Text File  |  2004-11-18  |  325b  |  17 lines

  1. -- clics sur les animaux
  2. on mouseUp me
  3.   if the frameLabel <> "r" then exit
  4.   s = the currentSpriteNum
  5.   go to string(s-18)
  6. end
  7.  
  8. -- gestion des sons en roll sur les animaux
  9. on mouseEnter
  10.   s = the currentSpriteNum
  11.   sound(2).play(member field("bruitages").line[s-18])
  12. end
  13.  
  14. on mouseLeave
  15.   puppetsound 2,0
  16. end
  17.